home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
datamake
/
datamake.dpr
next >
Wrap
Text File
|
1995-12-22
|
186b
|
14 lines
program Datamake;
uses
Forms,
Main in 'MAIN.PAS' {Form1},
OpenDB in 'OPENDB.PAS';
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.